This document contains a collection of useful commands and resources.
2025-08-29
Python environment ipykernel creation
- Assume you have
uvpackage manager installed. It is fast. - Run
uv create -n myenvto create a new environment. - Run
uv activate myenvto activate the environment. - Run
uv pip install ipykernelto install the kernel first. - Run
python -m ipykernel install --user --name=myenv --display-name=myenvto create the kernel specification.--display-namecan be anything you want. - Run
Ctrl + Shift + Pand selectDeveloper: Reload Windowto reload the window and make the new kernel available.